home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / ext2_200.zip / EXT2_SRC.ZIP / 32BITS / EXT2-OS2 / FSD32 / FS_NAME.ASM < prev    next >
Assembly Source File  |  1996-09-21  |  1KB  |  36 lines

  1. ;
  2. ; $Header: D:/32bits/ext2-os2/fsd32/RCS/fs_name.asm,v 1.1 1996/09/21 22:25:55 Willm Exp Willm $
  3. ;
  4.  
  5. ; 32 bits Linux ext2 file system driver for OS/2 WARP - Allows OS/2 to
  6. ; access your Linux ext2fs partitions as normal drive letters.
  7. ; Copyright (C) 1995, 1996 Matthieu WILLM
  8. ;
  9. ; This program is free software; you can redistribute it and/or modify
  10. ; it under the terms of the GNU General Public License as published by
  11. ; the Free Software Foundation; either version 2 of the License, or
  12. ; (at your option) any later version.
  13. ;
  14. ; This program is distributed in the hope that it will be useful,
  15. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. ; GNU General Public License for more details.
  18. ;
  19. ; You should have received a copy of the GNU General Public License
  20. ; along with this program; if not, write to the Free Software
  21. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  
  23.         .386p
  24.  
  25.         include fsd32_segdef.inc
  26.         include r0thunk.inc
  27.         include fsd.inc
  28.  
  29. CODE16 segment
  30.         public FS_NAME
  31.  
  32.         FS_NAME db "ext2", 0
  33. CODE16 ends
  34.  
  35.         end
  36.